Remove one .nix file and have everything in default.nix

This commit is contained in:
Matthias Beyer 2015-11-02 18:50:24 +01:00
parent 2ee8ef57c3
commit df15b41c24
2 changed files with 2 additions and 11 deletions

View file

@ -1,6 +1,4 @@
{ stdenv
, pkgs ? (import <nixpkgs> {})
}:
{ pkgs ? (import <nixpkgs> {}) }:
let
env = with pkgs.rustPlatform; [
@ -9,7 +7,7 @@ let
];
in
stdenv.mkDerivation rec {
pkgs.stdenv.mkDerivation rec {
name = "unfug.org";
src = ./.;
version = "0.0.0";

View file

@ -1,7 +0,0 @@
{ pkgs ? (import <nixpkgs> {})
}:
(import ./default.nix) {
stdenv = pkgs.stdenv;
pkgs = pkgs;
}