This commit is contained in:
Zonsopkomst 2024-01-26 20:09:09 -06:00
parent 90cad1f2f1
commit 626e41127a

View file

@ -1,12 +1,8 @@
{ config, pkgs, ... }:
let
pkgs = import (builtins.fetchGit {
# Descriptive name to make the store path easier to identify
name = "my-old-revision";
url = "https://github.com/NixOS/nixpkgs/";
ref = "refs/heads/nixpkgs-unstable";
rev = "9957cd48326fe8dbd52fdc50dd2502307f188b0d";
pkgs = import (builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/9957cd48326fe8dbd52fdc50dd2502307f188b0d.tar.gz";
}) {};
myPkg = pkgs.gnucash;